home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dr. Windows 3
/
dr win3.zip
/
dr win3
/
NEW_TECH
/
CSHX86.ZIP
/
SAMPLES
/
NEWFILES.CSH
< prev
next >
Wrap
Text File
|
1993-04-14
|
296b
|
15 lines
# List all the files or directories in the current directory that
# do not occur in the specified directory.
# Copyright (c) 1990 by Hamilton Laboratories. All rights reserved.
proc newfiles(olddir)
local i
foreach i (*)
if (! -e $olddir\$i) calc i
end
end
newfiles $argv